home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
PROGRAMM
/
PROGEDIT
/
3788.ZIP
/
QHLPQ.EXE
/
QHS.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-03-01
|
1KB
|
36 lines
echo off
: QhS.Bat, 01 Mar 93, Rhg
cls
if x==%1x goto Message
if "%QMF%"=="1" QHelpQ1 /M=C:\QHelpQ\QHelpQ.H! %1
: ^^^^^^^^^ = LOCATION of the QHelpQ.H! file
if NOT "%QMF%"=="1" QHelpQ /M=C:\QHelpQ\QHelpQ.H! %1
: ^^^^^^^^^ = LOCATION of the QHelpQ.H! file
goto END
: This batch file assumes the QHelpQ (C) is located in the C:\QHelpQ sub-DIR.
: If it is NOT, change the LOCATION above ( 2 places ).
: QMF=0==QM Mouse driver NOT installed. SET in Qh.BAT
: QMF=1==QM Mouse driver installed. SET in Qhm.BAT
: Use quotes just in case some one removes this variable.
: QM is (C) Copyright Jerry Houston, 1988, All Rights Reserved.
:Message
echo QhS.Bat, 01 Mar 93, Rhg
echo
echo This batch file is NOT intended to be run as a stand alone. It is
echo intended to be used in conjunction with QEdit (R). It is used to
echo LOCATE the QHelpQ utility AND PASS the 'topic' variable to it.
echo.
echo The 'Q editor' PASSES the required 'topic' variable to this file.
echo.
goto END
:END